home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-01 / zendisk1.zip / LST4-6.ASM < prev    next >
Assembly Source File  |  1990-02-15  |  294b  |  16 lines

  1. ;
  2. ; *** Listing 4-6 ***
  3. ;
  4. ; Measures the performance of 1000 MUL/SHR instruction
  5. ; pairs in a row. The lengthy execution time of MUL
  6. ; should keep the prefetch queue from ever emptying.
  7. ;
  8.     mov    cx,1000
  9.     sub    ax,ax
  10.     call    ZTimerOn
  11.     rept    1000
  12.     mul    ax
  13.     shr    ax,1
  14.     endm
  15.     call    ZTimerOff
  16.